







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Syntax
C# |
---|
[SerializableAttribute] public class BigList<T> |
Visual Basic (Declaration) |
---|
<SerializableAttribute> _ Public Class BigList(Of T) |
Visual C++ |
---|
[SerializableAttribute] generic<typename T> public ref class BigList |
Type Parameters
- T
The type exposes the following properties.
Public Properties
Name | Description | |
---|---|---|
![]() | Count |
Gets the number of items stored in the BigList. The indices of the items
range from 0 to Count-1.
(Overrides ListBase<(Of <T>)>..::Count.) |
![]() | Item |
Gets or sets an item in the list, by index.
(Overrides ListBase<(Of <T>)>..::Item[([Int32])].) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
![]() ![]() | ICollection<(Of <T>)>..::IsReadOnly | (Inherited from CollectionBase<(Of <T>)>.) |
![]() ![]() | ICollection..::IsSynchronized |
Indicates whether the collection is synchronized.
(Inherited from CollectionBase<(Of <T>)>.) |
![]() ![]() | ICollection..::SyncRoot |
Indicates the synchronization object for this collection.
(Inherited from CollectionBase<(Of <T>)>.) |
![]() ![]() | IList..::IsFixedSize |
Returns whether the list is a fixed size. This implementation always returns false.
(Inherited from ListBase<(Of <T>)>.) |
![]() ![]() | IList..::IsReadOnly |
Returns whether the list is read only. This implementation returns the value
from ICollection<T>.IsReadOnly, which is by default, false.
(Inherited from ListBase<(Of <T>)>.) |
![]() ![]() | IList..::Item |
Gets or sets the
value at a particular index in the list.
(Inherited from ListBase<(Of <T>)>.) |
See Also
Wintellect.PowerCollections Namespace